home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap10 / howto04 / cciwcc14.dpr < prev    next >
Encoding:
Text File  |  1996-06-12  |  478 b   |  19 lines

  1. program cciwcc14;
  2.  
  3. uses
  4.   Forms,
  5.   Cciccfrm in 'CCICCFRM.PAS' {CCINetCCForm},
  6.   Cciccinf in 'CCICCINF.PAS' {CCICInfoDlg},
  7.   Cciccprf in 'CCICCPRF.PAS' {CCICPrefsDlg},
  8.   Ccicnntp in 'CCICNNTP.PAS';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Title := 'CC InterNet Web Command Center';
  14.   Application.CreateForm(TCCINetCCForm, CCINetCCForm);
  15.   Application.CreateForm(TCCICInfoDlg, CCICInfoDlg);
  16.   Application.CreateForm(TCCICPrefsDlg, CCICPrefsDlg);
  17.   Application.Run;
  18. end.
  19.